From 3580badc18f964f6ff5401a7280c7ef9c589e8b0 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 30 May 1993 21:32:18 +0000 Subject: [PATCH] [HAVE_TERMIOS _AIX _I386]: Include termios before termio. --- src/systty.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/systty.h b/src/systty.h index bb24a7aedb2..2171a960465 100644 --- a/src/systty.h +++ b/src/systty.h @@ -30,8 +30,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #else #ifdef HAVE_TERMIOS +#if defined(_AIX) && defined(_I386) +#include /* termios.h needs to be before termio.h */ +#include +#else #include #include +#endif /* _AIX && _I386 */ #include #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ #ifndef VMS -- 2.30.2